home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / byobu / byobu-launcher-install next >
Text File  |  2009-10-11  |  2KB  |  51 lines

  1. #!/bin/sh -e
  2. #
  3. #    byobu-launcher-install
  4. #    Copyright (C) 2008 Canonical Ltd.
  5. #
  6. #    Authors: Nick Barcet <nick.barcet@ubuntu.com>
  7. #             Dustin Kirkland <kirkland@canonical.com>
  8. #
  9. #    This program is free software: you can redistribute it and/or modify
  10. #    it under the terms of the GNU General Public License as published by
  11. #    the Free Software Foundation, version 3 of the License.
  12. #
  13. #    This program is distributed in the hope that it will be useful,
  14. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #    GNU General Public License for more details.
  17. #
  18. #    You should have received a copy of the GNU General Public License
  19. #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  20.  
  21. PKG="byobu"
  22.  
  23. install_launcher() {
  24.     dest=$1
  25.     launcher="byobu-launcher"
  26.     launcher_line="\`echo \$- | grep -qs i\` && which $launcher > /dev/null && $launcher"
  27.     # Add it at the end
  28.     echo "$launcher_line" >> "$dest"
  29.     # Hush login, since byobu will handle motd printing
  30.     touch "$HOME"/.hushlogin
  31. }
  32.  
  33. # Sanitize the environment
  34. /usr/share/$PKG/byobu-launcher-uninstall || true
  35.  
  36. # Install in $HOME/.profile unconditionally
  37. install_launcher "$HOME/.profile"
  38.  
  39. # Install in zprofile if default shell is zsh
  40. if grep -qs "^$USER:.*zsh$" /etc/passwd; then
  41.     install_launcher "$HOME/.zprofile"
  42. fi
  43.  
  44. # Now, install in any shell-specific profiles, if they exist
  45. # This list may grow to support other shells
  46. for i in ".bash_profile" ".bash_login"; do
  47.     if [ -w "$HOME/$i" ]; then
  48.         install_launcher "$HOME/$i"
  49.     fi
  50. done
  51.